home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / c_news / 05 / listings / f_outemp.c < prev    next >
C/C++ Source or Header  |  1988-03-03  |  1KB  |  35 lines

  1. /************************************************************************/
  2. /*                                                                      */
  3. /*                                F_OUTEMP.C                                */
  4. /*                          Level 1 FOSSIL function                        */
  5. /*                                                                        */
  6. /************************************************************************/
  7. /*                                                                          */
  8. /*                          FOSSIL Library Routine                        */
  9. /*                                                                        */
  10. /************************************************************************/
  11. /*              REVISION 5 FOSSIL INTERFACE SPECIFICATIONS              */
  12. /************************************************************************/
  13.  
  14.  
  15. /************************************************************************/
  16. /************************************************************************/
  17. /*                                                                      */
  18. /*                            IMPLEMENTOR'S NOTE:                            */
  19. /*                                                                          */
  20. /*       This function may also be implemented as a MACRO in FOSSIL.H        */
  21. /*                         See FOSSIL.H for details.                        */
  22. /*                                                                        */
  23. /************************************************************************/
  24. /************************************************************************/
  25.  
  26.  
  27. #include    "fossil.h"
  28.  
  29.  int
  30. f_outempty(port)
  31.  int    port;
  32. {
  33.     return(f_status(port)&FST_TSRE ? 1 : 0);
  34. }
  35.